Add C# clientName decorators for AppLink EastWestGatewayVisibility and AKS acronym#41832
Merged
ArcturusZhang merged 1 commit intomainfrom Mar 27, 2026
Merged
Add C# clientName decorators for AppLink EastWestGatewayVisibility and AKS acronym#41832ArcturusZhang merged 1 commit intomainfrom
ArcturusZhang merged 1 commit intomainfrom
Conversation
Next Steps to Merge✅ All automated merging requirements have been met! To get your PR merged, see aka.ms/azsdk/specreview/merge.Comment generated by summarize-checks workflow run. |
…ronym Add two @@clientName decorators in client.tsp for the C# SDK: 1. EastWestGatewayVisibility -> AppLinkEastWestGatewayVisibility (contextual naming: add AppLink prefix for service context) 2. ClusterType.AKS -> Aks (PascalCase convention: 3+ letter acronyms use PascalCase) These address remaining naming issues from the C# SDK review of Azure/azure-sdk-for-net#57448. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
f96bd9c to
8b7b9f4
Compare
ArthurMa1978
added a commit
to Azure/azure-sdk-for-net
that referenced
this pull request
Mar 27, 2026
- EastWestGatewayVisibility -> AppLinkEastWestGatewayVisibility - ClusterType.AKS -> Aks Spec PR: Azure/azure-rest-api-specs#41832 Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
ArcturusZhang
approved these changes
Mar 27, 2026
ArthurMa1978
added a commit
to Azure/azure-sdk-for-net
that referenced
this pull request
Mar 27, 2026
Point to merged commit 762a9f2b1d4ae360a647e37b02f7074348643667 from Azure/azure-rest-api-specs#41832 Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
markcowl
pushed a commit
to markcowl/azure-rest-api-specs
that referenced
this pull request
Apr 7, 2026
…d AKS acronym (Azure#41832) Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
markcowl
pushed a commit
to markcowl/azure-rest-api-specs
that referenced
this pull request
Apr 9, 2026
…d AKS acronym (Azure#41832) Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
Ealianis
pushed a commit
that referenced
this pull request
Apr 17, 2026
…d AKS acronym (#41832) Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
Ealianis
pushed a commit
that referenced
this pull request
Apr 17, 2026
…d AKS acronym (#41832) Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Changes
Add two
@@clientNamedecorators inclient.tspfor the C# SDK to follow Azure SDK naming conventions:Contextual naming (add
AppLinkprefix)EastWestGatewayVisibility→AppLinkEastWestGatewayVisibilityPer the API review guidelines, all types must include sufficient context in their name.
EastWestGatewayVisibilitycould apply to any service with east-west gateways.PascalCase acronym convention
ClusterType.AKS→AksPer the Azure SDK naming guidelines, acronyms of 3+ letters should use PascalCase (capitalize first letter only), e.g.,
Aes,Tcp,Http.Motivation
These changes address remaining naming issues identified during the C# SDK review of Azure/azure-sdk-for-net#57448. This is a follow-up to #41754 which addressed the initial batch of naming fixes.
The renames only affect the C# SDK via
@@clientName(..., "csharp")and do not impact other languages or the wire format.